home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / libgplus.262 / libio / iostrerr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-12  |  204 b   |  12 lines

  1. /* This should be replaced by whatever namespace-clean
  2.    version of strerror you have available. */
  3.  
  4. extern char *strerror();
  5.  
  6. char *
  7. _IO_strerror(errnum)
  8.      int errnum;
  9. {
  10.   return strerror(errnum);
  11. }
  12.